"""
getHorosc1.py

This is a skeleton for starting to write a program that will
retrieve requested horoscope information from a specified URL

CSC 111 Class Example April 7, 2011
J Cardell
"""

# Import libraries here


# Define global variables here


def getHorosc_Date(sign):

    print "Inside getHorosc_Date function..."
    print "The sign passed in is %s." % (sign)

    print "Returning two values"
    return "a", "b"


def main():

    zodiac = raw_input("Enter the zodiac sign: ")

    date, horos = getHorosc_Date(zodiac)

    print
    print "Returned values: date = %s, horoscope = %s." % (date, horos)


main()
    
